home *** CD-ROM | disk | FTP | other *** search
/ Champak 62 / Volume 62 - JOGO DISK .iso / Games / penguin_dinner.swf / scripts / __Packages / classes / game / Command.as < prev    next >
Text File  |  2008-03-17  |  416b  |  14 lines

  1. class classes.game.Command
  2. {
  3.    static var TYPE_MOVE_TO_TABLE = "type_move_to_table";
  4.    static var TYPE_MOVE_TO_ORDER_PLATE = "type_move_to_order_plate";
  5.    static var TYPE_MOVE_TO_TRASHCAN = "type_move_to_trashcan";
  6.    static var TYPE_PAUSE_GAME = "type_pause_game";
  7.    function Command($type, $target, $data)
  8.    {
  9.       this.type = $type;
  10.       this.data = $data;
  11.       this.target = $target;
  12.    }
  13. }
  14.